home *** CD-ROM | disk | FTP | other *** search
-
- only forth definitions
-
- redef? off
-
- \ getmodule includes hidemodule includes
-
- .need TASK-TOPFILE
- : TASK-TOPFILE ;
- .then
-
-
-
- 0 .if
-
- include? dbgon jdev:Dbg.f
-
- .else
-
- variable .debug
-
- variable .dbgemit what's emit .dbgemit !
-
- variable USE_NEW_COLON
- variable PRINT_COLON_NAME
-
- : debugcfa ( cfa -- cfa' )
- .debug @ 0=
- IF
- drop ' drop
- THEN
- ;
-
- : dbgon what's emit dup .dbgemit ! debugcfa is emit ;
-
- : dbgoff .dbgemit @ is emit ?pause ;
-
- 0 .if
- : .me ( nfa -- )
- .debug @
- IF
- >newline id. ." ..." cr
- ELSE
- drop
- THEN
- ;
-
- : :
- [compile] : latest [compile] aliteral compile .me
- ;
- .then
-
- .then
-
-
-
-
- .NEED INITCLONE
- : INITCLONE ;
- .THEN
-
- exists? getmodule
- hash-state @ not AND
- .if
- include? ModuleFind ju:ModuleFind
- .else
- getmodule includes
- .then
-
- include? ReLoad ju:ReLoad
- include? logto ju:Logto
- include? ASM jf:Forward-ASM
- include? DynamicStack ju:StackUtils
- include? Examine() ju:dos-support
- include? { JU:locals
-
- \ include? update ju:Update
-
- \ " CL:" srcdir$ $move
- \ " CL2:" DestDir$ $move
-
- .NEED TGT
- vocabulary TGT
- .THEN
-
- also TGT
-
-
- include? Calls? CL:OpSizes.f
- include? PFALength? CL:PFALength.f
- include? StartJForth CL:StartJForth.asm
- include? Redefs CL:Redefs.f
- include? Status? CL:Status.f
- include? PacketFor CL:Tree.f
- include? TargetImage CL:MemRefs.f
- include? Stats CL:Stats.f
- include? Clone CL:Clone.f
- include? Save-Image CL:SaveImage.f
-
-
- only forth definitions
-
- redef? on
-
-